* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "open sans", sans-serif;
  line-height: 1.6;
  color: #000000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: #ffffff;
  padding: 20px 0;
  color: #002366;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  font-family: "montserrat", sans-serif;
  color: #002366;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: #002366;
  text-decoration: none;
  font-weight: 500;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* About Section */
.about-top {
  background-color: #003da5;
  color: white;
  padding: 60px 0;
}

.about-top .text-image {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-top .text {
  flex: 1;
}

.about-top h2 {
  font-family: "montserrat", sans-serif;
  margin-bottom: 20px;
}

.lead {
  font-family: "open sans", sans-serif;
  margin-bottom: 20px;
}

.about-top p {
  font-size: 17px;
}

.about-top .image {
  flex: 1;
}

.about-top img {
  width: 100%;
  border-radius: 8px;
}

/* Visi & Misi */
.visi-misi .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.visi-misi img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.visi {
  width: 100%;
  background-color: #ffffff;
}

.misi {
  width: 100%;
  background-color: #003da5;
  color: white;
}

.visi-misi .text {
  flex: 1;
}

.visi-misi h3 {
  font-family: "montserrat", sans-serif;
  font-size: 26px;
  margin-bottom: 15px;
}

.visi-misi h4 {
  font-family: "montserrat", sans-serif;
  font-size: 26px;
  margin-bottom: 15px;
}

.visi-misi p {
  font-family: "open sans", sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}

.visi-misi ul li {
  font-family: "open sans", sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}

.reverse {
  flex-direction: row-reverse;
}

/* Armada */
.armada {
  padding: 60px 0;
}

.armada h3 {
  font-family: "montserrat", sans-serif;
  text-align: left;
  font-size: 26px;
  color: red;
  margin-bottom: 30px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
  margin-top: 50px;
}

.gallery img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .container,
  .two-column,
  .sejarah-container,
  .content-wrapper,
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  header .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-text h2 {
    font-size: 24px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-text .btn {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }

  .hero-image img,
  .images img,
  .image img {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .image {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .images {
    width: 100%;
    align-items: center;
  }

  .text,
  .lead {
    text-align: center;
    padding: 0 10px;
  }

  .logo {
    font-size: 22px;
    text-align: center;
  }

  .hero-images .gallery {
    flex-direction: column;
    gap: 10px;
  }

  .hero-images .gallery img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .text h3,
  .text h4 {
    font-size: 22px;
    text-align: center;
  }
}
